博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
评论列表显示及排序,个人中心显示
阅读量:4969 次
发布时间:2019-06-12

本文共 2168 字,大约阅读时间需要 7 分钟。

 

  1. 显示所有评论
    {% for foo in ques.comments %}
  2. 所有评论排序
    uquestion = db.relationship('Question', backref=db.backref('comments', order_by=creat_time.desc))
    question=db.relationship('Question',backref=db.backref('comments',order_by=creatTime.desc))
  3. 显示评论条数
    {
    { ques.comments|length }}

    [{

    { question.comments|length }}]

  4. 完成个人中心

1.个人中心的页面布局(html文件及相应的样式文件)

2.定义视图函数def usercenter(user_id):

@app.route('/self/
')def self(user_id): user=User.query.filter(User.id==user_id).first() context={ 'user':user } return render_template('self.html',**context)

3.向前端页面传递参数

4.页面显示相应数据

发布的全部问答

发布的全部评论

个人信息

5.各个页面链接到个人中心

{% extends'base.html' %}{% block title %}    Self{% endblock %}{% block head %}    
{% endblock %}{% block main %}

{
{ user.username }}

全部问答

{% for foo in user.question %}
{
{ foo.author.username }}
{
{ foo.creatTime }}

{

{ foo.title }}

{

{ foo.detail }}

{% endfor %}

全部评论

{% for foo in user.comments %}
{
{ foo.author.username }}
{
{ foo.creatTime }}

{

{ foo.detail }}

{% endfor %}

个人信息

  • 用户名:{
    { user.username }}
  • 编号:{
    { user.id }}
  • 文章篇数:{
    { user.question|length }}
  • {% endblock %}

     

     

    转载于:https://www.cnblogs.com/lkm123/p/8029742.html

    你可能感兴趣的文章
    .net Tuple特性
    查看>>
    Java基础常见英语词汇
    查看>>
    nginx启动、关闭命令、重启nginx报错open() "/var/run/nginx/nginx.pid" failed
    查看>>
    BZOJ 3097 Hash Killer I
    查看>>
    UINavigationController的视图层理关系
    查看>>
    html阴影效果怎么做,css 内阴影怎么做
    查看>>
    BZOJ1026: [SCOI2009]windy数
    查看>>
    样板操作数
    查看>>
    64位UBUNTU下安装adobe reader后无法启动
    查看>>
    组件:slot插槽
    查看>>
    Nginx配置文件nginx.conf中文详解(转)
    查看>>
    POJ 1308 Is It A Tree?(并查集)
    查看>>
    N进制到M进制的转换问题
    查看>>
    springIOC第一个课堂案例的实现
    查看>>
    求输入成绩的平均分
    查看>>
    php PDO (转载)
    查看>>
    wordpress自动截取文章摘要代码
    查看>>
    [置顶] 一名优秀的程序设计师是如何管理知识的?
    查看>>
    highcharts 图表实例
    查看>>
    SpringBoot 优化内嵌的Tomcat
    查看>>